home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 July: Mac OS SDK / Dev.CD Jul 96 SDK / Dev.CD Jul 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / PartMaker / Embedder• / Embedder•.rsrc / dFRK_5053 < prev    next >
Encoding:
Text File  |  1996-04-24  |  854 b   |  39 lines

  1. //========================================================================================
  2. //
  3. //    File:                Menus.fr
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWRESFIL_K
  11. #include "FWResFil.k"
  12. #endif
  13.  
  14. #ifndef DEFINES_K
  15. #include "Defines.k"
  16. #endif
  17.  
  18. #ifndef FWMENUS_FR
  19. #include "FWMenus.fr"
  20. #endif
  21.  
  22. //----------------------------------------------------------------------------
  23. //    Menus
  24. //----------------------------------------------------------------------------
  25.  
  26. resource FW_RMenuBar(kMenuBar)
  27. {
  28.     {
  29.         FW_RPullDownMenu
  30.         (
  31.             "Embedder"
  32.             {
  33.                 FW_RTextItem(cOneFacet, FW_kNoKeyEquivalent, "One Facet"),
  34.                 FW_RTextItem(cFourFacets, FW_kNoKeyEquivalent, "Four Facets")
  35.             }
  36.         )
  37.     }
  38. };
  39.